home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 4 / QRZ Ham Radio Callsign Database - Volume 4.iso / files / tcpip / amiga / asrc29p.lha / pop3cli.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-29  |  207 b   |  19 lines

  1. /*
  2.  *    POP3 Client routines.
  3.  */
  4.  
  5. #include <stdio.h>
  6. #include "config.h"
  7. #include "commands.h"
  8.  
  9. int dopop3(argc,argv,p)
  10. int argc;
  11. char *argv[];
  12. void *p;
  13. {
  14.     printf("POP3 Not available yet!\n");
  15.  
  16.     return 0;
  17. }
  18.  
  19.